home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / time / RCS / Time_Add.man,v < prev    next >
Text File  |  1990-11-27  |  1KB  |  84 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @@;
  7.  
  8.  
  9. 1.2
  10. date     90.11.27.16.03.29;  author kupfer;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.12.30.16.20.39;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24. 1.2
  25. log
  26. @time.h -> spriteTime.h
  27. @
  28. text
  29. @' $Header: /sprite/src/lib/c/time/RCS/Time_Add.man,v 1.1 88/12/30 16:20:39 ouster Exp Locker: kupfer $ SPRITE (Berkeley)
  30. '
  31. '  ROUGH DRAFT!!!
  32. '
  33. .so \*(]ltmac.sprite
  34. .HS Time_Add lib
  35. .BS
  36. .SH NAME
  37. Time_Add, Time_Subtract, Time_Multiply, Time_Divide \- time arithmetic operations
  38. .SH SYNOPSIS
  39. .nf
  40. \fB#include <spriteTime.h>\fR
  41.  
  42. \fBTime_Add\fR(\fIa, b, resultPtr\fR)
  43.  
  44. \fBTime_Subtract\fR(\fIa, b, resultPtr\fR)
  45.  
  46. \fBTime_Multiply\fR(\fIa, c, resultPtr\fR)
  47.  
  48. \fBTime_Divide\fR(\fIa, c, resultPtr\fR)
  49. .SH ARGUMENTS
  50. .AP Time a in
  51. .AP Time b in
  52. Time values to be operated on.
  53. .AP int c in
  54. An integer factor used to modify a time.
  55. .AP Time *resultPtr out
  56. The result of the operation.
  57. .BE
  58. .SH DESCRIPTION
  59. These procedures perform the following arithmetic operations on Time values.
  60. .nf
  61. Add:        *resultPtr = a + b;
  62. Subtract:    *resultPtr = a - b;
  63. Multiply:    *resultPtr = a X c;
  64. Divide:        *resultPtr = a / c;
  65. .fi
  66. An in parameter can be specified as the the out parameter.
  67. .SH KEYWORDS
  68. time
  69. @
  70.  
  71.  
  72. 1.1
  73. log
  74. @Initial revision
  75. @
  76. text
  77. @d1 1
  78. a1 1
  79. ' $Header: Time_Add,v 1.2 86/07/03 14:06:36 andrew Exp $ SPRITE (Berkeley)
  80. d12 1
  81. a12 1
  82. \fB#include <time.h>\fR
  83. @
  84.